/* CSS Boiler Plate Start*/

* {
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  text-decoration: none;
  scroll-behavior: smooth;

}

/* CSS Boiler Plate End */


/* Defined Constant (Root) Start   */

:root {
  --text-color: #0000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
  --pane-padding: 32px 100px;
  --primary-font-family: 'Poppins', sans-serif;
  --primary-font-weight: 450;
  --primary-font-style: normal;
  --primary-font-size: 22px;
  --box-shadow: 0px 2px 5px rgb(255, 255, 255);


}

/* Defined Constant (Root) End */


/* Services Start  */
.services-page {
  background-color: var(--dark-bg-color);
  padding-bottom: 80px;

  h2 {
    font-size: 52px;
    text-align: center;
    padding-top: 100px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--main-color);


  }

  .about-para {
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--sub-text-color);
    font-size: 18px;
    line-height: 34px;

  }
}

.category {
  border: 1px solid var(--main-color);
  border-left: none;
  border-right: none;

  margin-top: 40px;
  display: flex;
}

.title-btn-container {
  width: 45%;
  margin-top: -40px
}

.service-img {
  width: 55%;
  height: 200px;
  overflow: hidden;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);


  img {


    width: 100%;
    height: 100%;
    object-fit: cover;




  }
}





.category-title {
  font-size: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-left: 100px;
  padding-bottom: 10px;
  padding-top: 100px;
  color: var(--main-color);

}

.services-container {
  display: flex;
  flex-wrap: wrap;
  padding-left: 100px;
  padding-right: 100px;
  gap: 50px;
  justify-items: center;

}

.service {
  width: 350px;
  height: 300px;
  margin-top: 40px;
  border-radius: 20px;
  /* border: 0.75px solid var(--light-bg-color); */
  box-shadow: 0px 2px 5px rgb(255, 255, 255, 0.75);
  background-color: var(--dark-bg-color);
  transition: all 0.3s ease;


  .bx-code-block {
    font-size: 52px;
    padding-left: 60px;
    position: relative;
    top: 50px;
    color: var(--secondary-color);


  }

  h3 {
    font-size: 22px;
    /* text-align: center; */
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    padding-top: 50px;
    padding-left: 50px;
    color: var(--main-color);

  }

  p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--sub-text-color);
    padding-left: 50px;
  }
}

.service:hover {
  transform: scale(1.05);
}



/* From Uiverse.io by alexmaracinaru */
.cta {
  position: relative;
  margin-left: 100px;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: var(--secondary-color);
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--main-color);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--main-color);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: var(--secondary-color);
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* Services End  */



/* Responsive Start  */
@media (max-width:617px) {
  .services-page {
    h2 {
      font-size: 32px;
    }

    .about-para {
      font-size: 14px;
      line-height: 18px;
      padding-left: 30px;
      padding-right: 30px;
    }
  }

  .category-title {
    padding-left: 30px;
    padding-bottom: 30px;
    font-size: 18px;
    margin-top: -40px;
  }

  .services-container {
    display: flex;
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 30px;
    gap: 50px;
  }


  .category {
    border: 1px solid var(--main-color);
    border-left: none;
    border-right: none;

    margin-top: 40px;
    display: flex;
  }

  .title-btn-container {
    width: 45%;
    margin-top: -40px
  }

  .service-img {
    width: 55%;
    height: 150px;
    overflow: hidden;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);


    img {


      width: 100%;
      height: 100%;
      object-fit: cover;




    }
  }




  .cta {
    position: relative;
    margin-left: 20px;

    padding: 8px 14px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
  }

  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: var(--secondary-color);
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
  }

  .cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--main-color);
  }

  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--main-color);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }

  .cta:hover:before {
    width: 100%;
    background: var(--secondary-color);
  }

  .cta:hover svg {
    transform: translateX(0);
  }

  .cta:active {
    transform: scale(0.95);
  }



}


@media (max-width:400px) {
  .service-img {
    width: 55%;
    height: 150px;
    overflow: hidden;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);


    img {


      width: 100%;
      height: 100%;
      object-fit: cover;





    }
  }
}




/* Responsive End  */